home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 85 / CD Temático 40 Febrero 2004.iso / DOS / ntfs / common / super.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-02-11  |  798 b   |  22 lines

  1. /*
  2.  *  super.h
  3.  *  Header file for super.c
  4.  *
  5.  *  Copyright (C) 1995-1997 Martin von L÷wis
  6.  *  Copyright (C) 1996-1997 RΘgis Duchesne
  7.  */
  8.  
  9. #define ALLOC_REQUIRE_LOCATION 1
  10. #define ALLOC_REQUIRE_SIZE     2
  11.  
  12. int ntfs_get_free_cluster_count(ntfs_inode *bitmap);
  13. int ntfs_get_volumesize(ntfs_volume *vol, long *vol_size );
  14. int ntfs_init_volume(ntfs_volume *vol,char *boot);
  15. int ntfs_load_special_files(ntfs_volume *vol);
  16. int ntfs_release_volume(ntfs_volume *vol);
  17. void ntfs_insert_fixups(unsigned char *rec, int secsize);
  18. int ntfs_fixup_record(ntfs_volume *vol, char *record, char *magic, int size);
  19. int ntfs_allocate_clusters(ntfs_volume *vol, ntfs_cluster_t *location, int *count,
  20.   int flags);
  21. int ntfs_deallocate_clusters(ntfs_volume *vol, ntfs_cluster_t location, int count);
  22.